home *** CD-ROM | disk | FTP | other *** search
- /* --------------------------------------------------------------------------- */
- /* Name: UserTemplate_Functions.c
- * Author: aleph NULL (Silicon Based Life)
- * Date: 8/10/95
- * Comment: (c) Copyright 1995 Silicon Based Life
- * :
- */
- /* --------------------------------------------------------------------------- */
- /* #includes */
-
- #include "UserTemplate_protos.h"
-
- /* --------------------------------------------------------------------------- */
- /* Functions */
-
- BOOL InitUserClock( void )
- {
- printf("Open libraries etc.\n");
- }
-
- /* --------------------------------------------------------------------------- */
-
- void FreeUserClock( void )
- {
- printf("Close libraries etc.\n");
-
- }
-
- /* --------------------------------------------------------------------------- */
-
- void OpenUserClock( void )
- {
- printf("Open the clocks window etc.\n");
- }
-
- /* --------------------------------------------------------------------------- */
-
- void CloseUserClock( void )
- {
- printf("Close the clocks window etc.\n");
- }
-
- /* --------------------------------------------------------------------------- */
-
- void UpdateUserClock( void )
- {
- printf("Update the time shown in the clock window.\n");
- }
-
- /* --------------------------------------------------------------------------- */
-
- void OpenUserClockPrefs( void )
- {
- printf("Open the clocks preference window.\n");
- }
-
- /* --------------------------------------------------------------------------- */
-
- void ChimeUserClock( void )
- {
- printf("Cause the clock to chime etc.\n");
- }
-
- /* --------------------------------------------------------------------------- */
-
- void AlarmUserClock( void )
- {
- printf("Cause the clock to alarm!.\n");
- }
-
- /* --------------------------------------------------------------------------- */
-
-